home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / graphics / pov2doc.zip / STAGE1.INC < prev    next >
Text File  |  1993-07-11  |  460b  |  20 lines

  1. // Persistence Of Vision Raytracer version 2.0 sample file.
  2. #include "colors.inc"
  3. #include "textures.inc"
  4. #include "shapes.inc"
  5.  
  6. #declare Camera1=
  7. camera {
  8.    location  <0, 0, -60>
  9.    direction <0, 0,  10>
  10.    look_at   <0, 0,   0>
  11. }
  12.  
  13. camera { Camera1 }
  14.  
  15. light_source { <1000, 1000, -2000> color White}
  16.  
  17. plane { z, 1.01 pigment {checker color White color rgb <1,.8,.8>} }
  18.  
  19. plane { y, -1.01 pigment {checker color White color rgb <.8,.8,1>} }
  20.